get value from within parentheses of a string javascript
121
get value from within parentheses of a string javascript -
var regExp = /\(([^)]+)\)/;
var matches = regExp.exec("I expect five hundred dollars ($500).");
//matches[1] contains the value between the parentheses
console.log(matches[1]);